home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASP Advantage 1994 2nd Q2
/
The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin
/
files
/
progming
/
cenviw
/
keycode.cmm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-09-16
|
198 b
|
7 lines
// KeyCode - Print values of characters pressed
printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
do {
key = getch();
printf("key=%04X\n",key)
} while( key != '\033' );